home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / s342q08.lha / affsys.c < prev    next >
C/C++ Source or Header  |  1993-01-02  |  575b  |  34 lines

  1. /*
  2.  *                Affsys.C
  3.  *
  4.  * Automatic File Forwarding system dependent code.
  5.  */
  6.  
  7. /*
  8.  *                History
  9.  *
  10.  * 90May15 HAW Created.
  11.  */
  12.  
  13. /*
  14.  *                Contents
  15.  *
  16.  *    SetBuffer()        Figures out buffer contents
  17.  *    MSDOSparse()        Parses a filename for drive and path
  18.  */
  19.  
  20. #include "ctdl.h"
  21.  
  22.  
  23. void MSDOSparse(char *theDir, char *drive);
  24. /*
  25.  * SetBuffer()
  26.  *
  27.  * This function figures out where to find files to send to another system
  28.  * and sets up internal buffer of fl_send appropriately.
  29.  */
  30. void SetBuffer(char *name, struct fl_send *sendWhat)
  31. {
  32.     strCpy(sendWhat->snArea.naDirname, name);
  33. }
  34.